type fmt.buffer
10 uses
fmt (current package)
format.go#L42: buf *buffer
format.go#L58: func (f *fmt) init(buf *buffer) {
format.go#L73: buf = make(buffer, cap(buf)*2+n)
print.go#L101: type buffer []byte
print.go#L103: func (b *buffer) write(p []byte) {
print.go#L107: func (b *buffer) writeString(s string) {
print.go#L111: func (b *buffer) writeByte(c byte) {
print.go#L115: func (bp *buffer) writeRune(r rune) {
print.go#L121: buf buffer
scan.go#L159: buf buffer // token accumulator
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |